home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19960209-19960425 / 000196_news@columbia.edu _Mon Mar 11 15:20:33 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.3/8.7.3) with ESMTP id PAA27894 for <kermit.misc@watsun>; Mon, 11 Mar 1996 15:20:33 -0500 (EST)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.3/8.7.3) id PAA02763 for kermit.misc@watsun; Mon, 11 Mar 1996 15:20:28 -0500 (EST)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: Last Hope - Honeywell & Kermit
  8. Date: 11 Mar 1996 20:20:11 GMT
  9. Organization: Columbia University
  10. Lines: 51
  11. Message-ID: <4i21tr$2l7@apakabar.cc.columbia.edu>
  12. References: <4hu4ro$hm7@tandem.wantree.com.au>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14.  
  15. In article <4hu4ro$hm7@tandem.wantree.com.au>,
  16. Mark Huxley <mah@wantree.com.au> wrote:
  17. : One last try, Just in case the request was missed, Does anybody know how
  18. : to configure Kermit to perform a file transfer with a Honeywell DPS-6.?
  19. : PS.  Last ditch effort.  If it helps, I can raise the stakes to include
  20. : a fine WA beer or wine !
  21. : Cheers
  22. : Mark,  desperate of Perth
  23. :
  24. I finally exhumed this information.  From the Honeywell DPS-6 Kermit
  25. documentation (quoting):
  26.  
  27. The DPS-6 has certain communication parameters that do not change and
  28. MSKermit on the microcomputer must be set for them as follows:
  29.  
  30.   SET PARITY EVEN <cr>
  31.   SET FLOW-CONTROL NONE <cr>
  32.   SET HANDSHAKE NONE <cr>
  33.   SET SEND START-OF-PACKET 01 <cr>
  34.   SET RECEIVE START-OF-PACKET 01 <cr>
  35.  
  36. If using MS-DOS Kermit 3.02 (or later) ALSO perform the following two
  37. commands:
  38.  
  39.   SET TERMINAL HONEY <cr>
  40.   SET RECEIVE IGNORE 10 <cr>
  41.  
  42. for 3.1 operating system while using MS-DOS Kermit 3.02 (or later):
  43.  
  44.   SET SEND DOUBLE 92 <cr>
  45.  
  46. The speed at which MSKermit can send packets to the DPS-6 (since
  47. hardware/software handshaking is not available) can actually EXCEED the
  48. turn-around capabilities of the ATD line driver and produce (^G) BEL
  49. characters as a packet response.  Therefore the best way to use Kermit is
  50. to put a slight delay between packets and use the largest packet size,
  51. e.g.:
  52.  
  53.   SET SEND PACKET-SIZE 2000 <cr>
  54.   SET RECEIVE PACKET-SIZE 2000 <cr>
  55.   SET SEND PAUSE 20 <cr>
  56.  
  57. This delay can be tuned for greatest throughput at different baud rates
  58. etc.. (end quote)
  59.  
  60. See kermit/d/hd6ker.doc for additional info.
  61.  
  62. - Frank